home *** CD-ROM | disk | FTP | other *** search
- REM $INCLUDE: 'fastgraf.bi'
-
- DEFINT A-Z
-
- DIM KeyCode AS STRING*1
- DIM AuxCode AS STRING*1
-
- Seconds& = 0
-
- DO
- FGwaitfor 91
- Seconds& = Seconds& + 5
- PRINT Seconds&; "seconds have elapsed."
- FGintkey KeyCode, AuxCode
- LOOP WHILE ASC(KeyCode)+ASC(AuxCode) = 0
-
- END